home *** CD-ROM | disk | FTP | other *** search
/ ADA Programming Guide / ADA Programming Guide.iso / ada_gwu / 0a.c next >
C/C++ Source or Header  |  1996-01-30  |  35KB  |  1,089 lines

  1. /*
  2.  * Copyright (C) 1985-1992  New York University
  3.  * 
  4.  * This file is part of the Ada/Ed-C system.  See the Ada/Ed README file for
  5.  * warranty (none) and distribution info and also the GNU General Public
  6.  * License for more details.
  7.  
  8.  */
  9. /* sem0 - part a - initializations */
  10.  
  11. /* TODO
  12.  
  13. 01-nov-84    ds
  14. delete refs to ast_nodes.
  15. Note that need to review initializatio of symbol_short_integer.
  16.  
  17. 19-oct-84    ds
  18. Review copy_node etc to see if proper fields being copied.
  19. Need to review use of copy_node, copy_attributes.
  20.  
  21. sort out SEQUENCE_LIST problem, if initial length ever requires reaalloc
  22. call then malloc is 'botched'. For now have large length in place (about
  23. 600 elements)  ds 15 jul 84
  24.  
  25.  
  26. There is dcl_put in setl to standard, in c to standard0.Things working
  27.  ok now, but sort this out        ds 19 jul
  28.  */
  29.  
  30. #include "hdr.h"
  31. #include "vars.h"
  32. #include "dbxp.h"
  33. #include "dclmapp.h"
  34. #include "arithp.h"
  35. #include "miscp.h"
  36. #include "smiscp.h"
  37. #include "setp.h"
  38. #include "chapp.h"
  39. /* ctype.h needed for isupper, tolower, etc in 4.2 bsd*/
  40.  
  41. extern int ADA_MIN_INTEGER, ADA_MAX_INTEGER;
  42.  
  43. static Declaredmap declared_standard0, declared_standard, declared_ascii,
  44.   declared_unmentionable;
  45. static int init_node_count = 1;   /* node 0 is OPT_NODE jc 2/8/86 */
  46. /* NOTE: if change op_desig_array, also change desig_of_op (chap 12)*/
  47. static char *op_desig_array[] = {
  48.     "and", "or", "xor", "not", "mod", "rem", "abs",
  49.     "=", "/=", "<=", "<", ">=", ">",
  50.     "+", "-", "&", "*", "/", "**", 0
  51. };
  52.  
  53. static Node val_node1(int);
  54. static Node val_nodea1(int);
  55. static Node val_node2(double);
  56. static Node val_node3(Rational);
  57. static void init_node_save(Node);
  58. static Symbol ini_chain(char *, int, Symbol);
  59. static Symbol symbtab_enter(char *, Symbol);
  60. static Symbol new_arith_op(char *, Symbol);
  61. static void ini_new_agg(Symbol);
  62.  
  63. void init_sem()                                                    /*;init_sem*/
  64. {
  65.     /*
  66.      * This is the primary initialization procedure.  It is called
  67.      * when the compiler is initialized.
  68.      *
  69.      */
  70.  
  71.     /*VARDECL*/
  72.     Tuple constr_new;
  73.     int        i;
  74.     Tuple tup;
  75.     Symbol sym;
  76.     char   *id;
  77.     Fordeclared fd;
  78.     static char *char_names[] = {
  79.         "NUL 0",
  80.         "SOH 1",
  81.         "STX 2",
  82.         "ETX 3",
  83.         "EOT 4",
  84.         "ENQ 5",
  85.         "ACK 6",
  86.         "BEL 7",
  87.         "BS 8",
  88.         "HT 9",
  89.         "LF 10",
  90.         "VT 11",
  91.         "FF 12",
  92.         "CR 13",
  93.         "SO 14",
  94.         "SI 15",
  95.         "DLE 16",
  96.         "DC1 17",
  97.         "DC2 18",
  98.         "DC3 19",
  99.         "DC4 20",
  100.         "NAK 21",
  101.         "SYN 22",
  102.         "ETB 23",
  103.         "CAN 24",
  104.         "EM 25",
  105.         "SUB 26",
  106.         "ESC 27",
  107.         "FS 28",
  108.         "GS 29",
  109.         "RS 30",
  110.         "US 31",
  111.         "EXCLAM 33",
  112.         "QUOTATION 34",
  113.         "SHARP 35",
  114.         "DOLLAR 36",
  115.         "PERCENT 37",
  116.         "AMPERSAND 38",
  117.         "COLON 58",
  118.         "SEMICOLON 59",
  119.         "QUERY 63",
  120.         "AT_SIGN 64",
  121.         "L_BRACKET 91",
  122.         "BACK_SLASH 92",
  123.         "R_BRACKET 93",
  124.         "CIRCUMFLEX 94",
  125.         "UNDERLINE 95",
  126.         "GRAVE 96",
  127.         "LC_A 97",
  128.         "LC_B 98",
  129.         "LC_C 99",
  130.         "LC_D 100",
  131.         "LC_E 101",
  132.         "LC_F 102",
  133.         "LC_G 103",
  134.         "LC_H 104",
  135.         "LC_I 105",
  136.         "LC_J 106",
  137.         "LC_K 107",
  138.         "LC_L 108",
  139.         "LC_M 109",
  140.         "LC_N 110",
  141.         "LC_O 111",
  142.         "LC_P 112",
  143.         "LC_Q 113",
  144.         "LC_R 114",
  145.         "LC_S 115",
  146.         "LC_T 116",
  147.         "LC_U 117",
  148.         "LC_V 118",
  149.         "LC_W 119",
  150.         "LC_X 120",
  151.         "LC_Y 121",
  152.         "LC_Z 122",
  153.         "L_BRACE 123",
  154.         "BAR 124",
  155.         "R_BRACE 125",
  156.         "TILDE 126",
  157.         "DEL 127",
  158.         " "
  159.     };
  160.  
  161.     if (cdebug2 > 3) TO_ERRFILE("AT PROC : INIT_SEM;");
  162.  
  163.     lib_stub = tup_new(0);
  164.  
  165.     seq_node = tup_new(400);
  166.     seq_node_n = 0;
  167.  
  168.     seq_symbol = tup_new(300);
  169.     seq_symbol_n = 0;
  170.  
  171. #ifdef TBSL
  172.     unit_nodes = tup_new(30);
  173.     unit_nodes_n = 0;
  174. #endif
  175.  
  176.     stub_info = tup_new(0);
  177.     unit_number_now = 0;
  178.  
  179.     NOT_CHOSEN = tup_new(0);
  180.  
  181.     init_nodes = tup_new(30);
  182.     init_symbols = tup_new(0);
  183.     /* op_designators no longer needed, just use op_desig_array */
  184.  
  185. #ifdef COMMENT
  186.     /* retained for documentation purposes (DS 26 jun 84) */
  187.     op
  188.         misc_attributes = {
  189.         'ADDRESS', 'IMAGE'},
  190.             u_integer_attributes = {
  191.             'AFT',         'COUNT',     'DIGITS',     'EMAX',
  192.                 'FIRST_BIT',     'FORE',     'LAST_BIT',     'LENGTH',
  193.                 'MACHINE_EMAX',     'MACHINE_EMIN', 'MACHINE_MANTISSA',
  194.             'MACHINE_RADIX', 'MANTISSA',     'POS',         'POSITION',
  195.                 'SAFE_EMAX',     'SIZE',     'STORAGE_SIZE', 'WIDTH'
  196.                 },
  197.             ??attributes := misc_attributes + u_integer_attributes +
  198.  
  199.                 overloaded_attributes = {
  200.                 'BASE',         'FIRST',     'LAST',      'PRED',
  201.                     'RANGE',     'SUCC',     'VAL',          'VALUE'
  202.                     },
  203.                     float_attributes = {
  204.                     'DELTA',     'EPSILON',   'LARGE',     'SMALL', 'SAFE_LARGE',
  205.                         'SAFE_SMALL'
  206.                         },
  207.  
  208.                         boolean_attributes = {
  209.                         'CONSTRAINED', 'MACHINE_OVERFLOWS', 'MACHINE_ROUNDS',
  210.                             'CALLABLE',    'TERMINATED'
  211.                             },
  212.  
  213. #endif
  214.  
  215.     /* Initialize global mappings for abstract syntax tree and symbol table.*/
  216.     /*
  217.      * N_KIND    := {[OPT_NODE, as_opt]};
  218.      * N_AST     := {[OPT_NODE, []]};
  219.      * N_VAL     := {};
  220.      * N_LIST    := {[OPT_NODE, []]};
  221.      */
  222.  
  223.     /* Initialize OPT_NODE - will get unit 0, seq 1, which is used in places */
  224.     /*  to identify it; then remove from seq_node so it isn't modified         */
  225.     OPT_NODE = node_new(as_opt);
  226.     N_LIST(OPT_NODE) = tup_new(0);
  227.  
  228.     scope_st = tup_new(0);
  229.     newtypes = tup_new(0);
  230.     has_return_stk = tup_new(0);
  231.     current_instances = tup_new(0);
  232.     lab_seen = tup_new(0);
  233.     /* current_node = tup_new(0); need not initialize for C */
  234.     /* need to decide representation for unit_name*/
  235.     unit_name = "";
  236. #ifdef IBM_PC
  237.     /* copy literals */
  238.     unit_name = strjoin("","");
  239. #endif
  240.  
  241.     /* need to use setname to enter identifier names for initial symbols
  242.      * need to see if handle C semantics w.r.t. string constants properly
  243.      * here also
  244.      */
  245.     /* need to copy literals on PC since code overlaid */
  246. #ifdef IBM_PC
  247. #define setname(sym, str) ORIG_NAME(sym) = strjoin(str, "");
  248. #else
  249. #define setname(sym, str) ORIG_NAME(sym) = str
  250. #endif
  251.  
  252.     OPT_NAME = sym_new(na_obj);
  253.     setname(OPT_NAME, "opt_name");
  254.  
  255. #define syminit1(sym, na, typ) sym = sym_new(na); TYPE_OF(sym) = typ
  256.     syminit1(symbol_integer, na_type, symbol_integer);
  257.     setname(symbol_integer, "INTEGER");
  258.     syminit1(symbol_short_integer_base, na_type, symbol_integer);
  259.     setname(symbol_short_integer_base, "SHORT_INTEGER\'base");
  260.     syminit1(symbol_short_integer, na_type, symbol_short_integer_base);
  261.     setname(symbol_short_integer, "SHORT_INTEGER");
  262.     syminit1(symbol_universal_integer, na_type, symbol_integer);
  263.     setname(symbol_universal_integer, "universal_integer");
  264.     syminit1(symbol_float, na_type, symbol_float);
  265.     setname(symbol_float, "FLOAT");
  266.     syminit1(symbol_universal_real, na_type, symbol_float);
  267.     setname(symbol_universal_real, "universal_real");
  268.     syminit1(symbol_dfixed, na_type, symbol_dfixed);
  269.     setname(symbol_dfixed, "$FIXED");
  270.     syminit1(symbol_natural, na_subtype, symbol_integer);
  271.     setname(symbol_natural, "NATURAL");
  272.     syminit1(symbol_positive, na_subtype, symbol_integer);
  273.     setname(symbol_positive, "POSITIVE");
  274.     syminit1(symbol_duration, na_type, symbol_duration);
  275.     setname(symbol_duration, "DURATION");
  276.     syminit1(symbol_character, na_enum, symbol_character);
  277.     setname(symbol_character, "CHARACTER");
  278.     syminit1(symbol_boolean, na_enum, symbol_boolean);
  279.     setname(symbol_boolean, "BOOLEAN");
  280.     syminit1(symbol_string, na_array, symbol_string);
  281.     setname(symbol_string, "STRING"); /* ?? */
  282.     tup = tup_new(2);
  283.     tup[1] =(char *) tup_new1((char *) symbol_positive);
  284.     tup[2] =(char *) symbol_character;
  285.     SIGNATURE(symbol_string) = tup;
  286.     symbol_character_type = sym_new(na_enum);
  287.     setname(symbol_character_type, "char_type");
  288.     root_type(symbol_character_type) = symbol_character_type;
  289.     syminit1(symbol_string_type, na_array, symbol_string_type);
  290.     setname(symbol_string_type, "string_type");
  291.     tup = tup_new(2);
  292.     tup[1] = (char *) tup_new1((char *) symbol_positive);
  293.     tup[2] = (char *) symbol_character_type;
  294.     SIGNATURE(symbol_string_type) = tup;
  295.     syminit1(symbol_daccess, na_access, symbol_daccess);
  296.     setname(symbol_daccess, "$ACCESS");
  297.     syminit1(symbol_null, na_null, symbol_any);
  298.     setname(symbol_null, "null");
  299.     syminit1(symbol_main_task_type, na_task_type, symbol_main_task_type);
  300.     setname(symbol_main_task_type, "main_task_type");
  301.     syminit1(symbol_constrained, na_discriminant, symbol_boolean);
  302.     setname(symbol_constrained, "constrained");
  303.     syminit1(symbol_none, na_type, symbol_none);
  304.     setname(symbol_none, "none");
  305.     symbol_standard0 = sym_new(na_package);
  306.     setname(symbol_standard0, "STANDARD#0");
  307.  
  308.     /* new symbol definitions that are common with the code generator should */
  309.     /* be placed before this comment.                         */
  310.  
  311.     symbol_undef = sym_new(na_obj); /* for '?' case */
  312.     setname(symbol_undef, "?-undef");
  313.  
  314.     /*  In SETL, have
  315.      *    scope_info = init_scope_info;
  316.      * scope_info is macro: translates into
  317.      *    scope_name = 'STANDARD#0';
  318.      *    prefix := suffix := '';
  319.      *    open_scopes := ['STANDARD#0', 'UNMENTIONABLE#0']
  320.      *    used_mods := [];
  321.      *    vis_mods := ['ASCII'];
  322.      *
  323.      * TBSL - where to put string for standard0 etc 
  324.      */
  325.     symbol_standard = sym_new(na_package);
  326.     setname(symbol_standard, "standard");
  327.     symbol_unmentionable = sym_new(na_package);
  328.     setname(symbol_unmentionable, "unmentionable");
  329.     symbol_ascii = sym_new(na_package);
  330.     setname(symbol_ascii, "ASCII");
  331.     symbol_system = (Symbol) 0; /* until defined */
  332.     scope_name = symbol_standard0;
  333.     open_scopes = tup_new(2);
  334.     open_scopes[1] =(char *) symbol_standard0;
  335.     open_scopes[2] =(char *) symbol_unmentionable;
  336.     vis_mods = tup_new1((char *) symbol_ascii);
  337.     used_mods = tup_new(0);
  338.  
  339.     noop_error = FALSE;
  340.     out_context = FALSE;
  341.  
  342.     full_others = FALSE;    /*common case for assignment.*/
  343.     fold_context = TRUE; /* Everywhere but for conformance*/
  344.  
  345.     base_declared_symbols[0] = symbol_standard0;
  346.     base_declared_symbols[1] = symbol_unmentionable;
  347.     base_declared_symbols[2] = symbol_standard;
  348.     base_declared_symbols[3] = symbol_ascii;
  349.  
  350.     syminit1(symbol_long_integer, na_type, symbol_integer);
  351.     setname(symbol_long_integer, "LONG_INTEGER");
  352.     syminit1(symbol_long_float, na_type, symbol_float);
  353.     setname(symbol_long_float, "LONG_FLOAT");
  354.     syminit1(symbol_universal_fixed, na_type, symbol_universal_fixed);
  355.     setname(symbol_universal_fixed, "universal_fixed");
  356.     syminit1(symbol_array_type, na_array, symbol_any);
  357.     setname(symbol_array_type, "array_type");
  358.     tup = tup_new(2);
  359.     tup[1] =(char *) tup_new1((char *) symbol_any);
  360.     tup[2] =(char *) symbol_character;
  361.     SIGNATURE(symbol_array_type) = tup;
  362.     syminit1(symbol_discrete_type, na_type, symbol_discrete_type);
  363.     setname(symbol_discrete_type, "discrete_type");
  364.     /* 'I:1' is symbol_universal_integer_1' */
  365.     syminit1(symbol_universal_integer_1, na_constant, symbol_universal_integer);
  366.     setname(symbol_universal_integer_1, "I:1");
  367.     /* initialize signature at end for compatibility with gen */
  368.  
  369.     /* ['I:1',  [na_constant, 'universal_integer', val_node(1) ]], */
  370.     /* Definitions of symbol_unmentionable, symbol_standard and symbol_ascii
  371.      * done at this point in SETL version are done at start of this procedure
  372.      * in C version
  373.      */
  374.  
  375.     syminit1(symbol_any, na_type, symbol_any);
  376.     setname(symbol_any, "any");
  377.  
  378.     syminit1(symbol_any_id, na_obj, symbol_any);
  379.     SCOPE_OF(symbol_any_id) = symbol_unmentionable;
  380.     root_type(symbol_any_id) = symbol_any;
  381.     setname(symbol_any_id, "any_id");
  382.     syminit1(symbol_left, na_in, symbol_any);
  383.     setname(symbol_left, "LEFT");
  384.     SIGNATURE(symbol_left) = (Tuple) OPT_NODE;
  385.     syminit1(symbol_right, na_in, symbol_any);
  386.     setname(symbol_right, "RIGHT");
  387.     SIGNATURE(symbol_right) = (Tuple) OPT_NODE;
  388.  
  389.     /* Initialize bounds of predefined types. */
  390.     /* Note that val_node is only called from this procedure, so that
  391.      * calling sequence can be changed if necessary; moreover the code
  392.      * should be put in this module, not in utilities
  393.      */
  394.  
  395.     constr_new = constraint_new(CONSTRAINT_RANGE);
  396.     numeric_constraint_low(constr_new) = (char *) val_node1(ADA_MIN_INTEGER);
  397.     numeric_constraint_high(constr_new) = (char *)val_node1(ADA_MAX_INTEGER);
  398.     SIGNATURE(symbol_integer) =(Tuple) constr_new;
  399.  
  400.     SIGNATURE(symbol_long_integer) = SIGNATURE(symbol_integer);
  401.  
  402.     constr_new = constraint_new(CONSTRAINT_RANGE);
  403.     /* avoid use of -32768 as this causes problems on pc */
  404.     i = -32767;
  405.     numeric_constraint_low(constr_new) = (char *) val_node1(i-1);
  406.     numeric_constraint_high(constr_new) = (char *) val_node1(32767);
  407.     SIGNATURE(symbol_short_integer) = constr_new;
  408.     SIGNATURE(symbol_short_integer_base) = constr_new;
  409.  
  410.     constr_new = constraint_new(CONSTRAINT_DIGITS);
  411.     numeric_constraint_low(constr_new) = (char *) val_node2(ADA_MIN_REAL);
  412.     numeric_constraint_high(constr_new) = (char *) val_node2(ADA_MAX_REAL);
  413.     numeric_constraint_digits(constr_new) =
  414.         (char *) val_node1(ADA_REAL_DIGITS);
  415.     SIGNATURE(symbol_float) = constr_new;
  416.  
  417.     SIGNATURE(symbol_long_float) = SIGNATURE(symbol_float);
  418.  
  419.     constr_new = constraint_new(CONSTRAINT_DELTA);
  420.     numeric_constraint_low(constr_new) = (char *) val_node3(rat_fri(int_fri(-1),
  421.       int_fri(0)));
  422.     numeric_constraint_high(constr_new) = (char *) val_node3(rat_fri(int_fri(1),
  423.       int_fri(0)));
  424.     numeric_constraint_delta(constr_new) =
  425.         (char *) val_node3(rat_fri(int_fri(0), int_fri(1)));
  426.     numeric_constraint_small(constr_new) = (char *) OPT_NODE;
  427.     SIGNATURE(symbol_dfixed) =(Tuple) constr_new;
  428.  
  429.     constr_new = constraint_new(CONSTRAINT_RANGE);
  430.     numeric_constraint_low(constr_new) = (char *) val_node1(0);
  431.     numeric_constraint_high(constr_new) = (char *) val_node1(ADA_MAX_INTEGER);
  432.     SIGNATURE(symbol_natural) =(Tuple) constr_new;
  433.  
  434.     constr_new = constraint_new(CONSTRAINT_RANGE);
  435.     numeric_constraint_low(constr_new) = (char *) val_node1(1);
  436.     numeric_constraint_high(constr_new) = (char *) val_node1(ADA_MAX_INTEGER);
  437.     SIGNATURE(symbol_positive) =(Tuple) constr_new;
  438.  
  439.     constr_new = constraint_new(CONSTRAINT_DELTA);
  440.     numeric_constraint_low(constr_new) = (char *)
  441.       val_node3(rat_fri(int_frs("-86400000"), int_fri(1000)));
  442.     numeric_constraint_high(constr_new) =  (char *)
  443.       val_node3(rat_fri(int_frs("86400000"), int_fri(1000)));
  444.     numeric_constraint_delta(constr_new) = 
  445.       (char *) val_node3(rat_fri(int_fri(1), int_fri(1000)));
  446.     numeric_constraint_small(constr_new) =
  447.       (char *)val_node3(rat_fri(int_fri(1), int_fri(1000)));
  448.     SIGNATURE(symbol_duration) =(Tuple) constr_new;
  449.  
  450.     constr_new = constraint_new(CONSTRAINT_RANGE);
  451.     numeric_constraint_low(constr_new) = (char *) val_node1(0);
  452.     numeric_constraint_high(constr_new) = (char *) val_node1(127);
  453.     SIGNATURE(symbol_character) =(Tuple) constr_new;
  454.  
  455.     constr_new = constraint_new(CONSTRAINT_RANGE);
  456.     numeric_constraint_low(constr_new) = (char *)val_node1(0);
  457.     numeric_constraint_high(constr_new) = (char *) val_node1(1);
  458.     SIGNATURE(symbol_boolean) =(Tuple) constr_new;
  459.  
  460.     /* set size of init_nodes.
  461.      * NOTE, must NOT make any new entries to init_nodes after
  462.      * doing assignment of tup_size below    ds 24 sep 84
  463.      */
  464.     init_nodes[0] = (char *)init_node_count;
  465.  
  466.     SIGNATURE(symbol_universal_integer) = SIGNATURE(symbol_integer);
  467.     SIGNATURE(symbol_universal_real) = SIGNATURE(symbol_float);
  468.     SIGNATURE(symbol_universal_fixed) = SIGNATURE(symbol_dfixed);
  469.     /* So that the usual naming conventions can be followed for the package */
  470.     /* STANDARD, STANDARD is declared within yet another scope, UNMENTIONABLE.*/
  471.     /* DECLARED := {[standard, {}], ['ASCII', {}],
  472.      *   ['UNMENTIONABLE#0', {['STANDARD', standard]}] };
  473.     */
  474.     declared_standard0 = dcl_new(190);
  475.     declared_ascii = dcl_new(80);
  476.     declared_unmentionable = dcl_new(1);
  477.     declared_standard = dcl_new(4);
  478.  
  479.     declared_all[0] = declared_standard0;
  480.     declared_all[1] = declared_unmentionable;
  481.     declared_all[2] = declared_standard;
  482.     declared_all[3] = declared_ascii;
  483.  
  484.     for (i = 0; i <= 3; i++) {
  485.         Symbol s;
  486.         s = base_declared_symbols[i];
  487.         DECLARED(s) = declared_all[i];
  488.     }
  489.  
  490.     dcl_put(declared_unmentionable, "STANDARD", symbol_standard0);
  491.  
  492.     /* Operators(most) entered into SYMBTAB and DECLARED.*/
  493.  
  494.     /* concat_ops       = {'&'}, */
  495.     /*NOTE:: 'boolean_type', etc used only here and in chapter 4 */
  496.  
  497.     /* boolean_ops      = {'not', 'and', 'or', 'xor'}, */
  498.     symbol_boolean_type = sym_new(na_type);
  499.     TYPE_OF(symbol_boolean_type) = symbol_boolean_type;
  500.     setname(symbol_boolean_type, "boolean_type");
  501.  
  502.     symbol_not = symbtab_enter("not", symbol_boolean_type);
  503.     symbol_and = symbtab_enter("and", symbol_boolean_type);
  504.     symbol_or = symbtab_enter("or", symbol_boolean_type);
  505.     symbol_xor = symbtab_enter("xor", symbol_boolean_type);
  506.  
  507.     /* short_circ_ops = { 'andthen', 'orelse'}, */
  508.     symbol_andthen = symbtab_enter("andthen", symbol_boolean_type);
  509.     symbol_orelse = symbtab_enter("orelse", symbol_boolean_type);
  510.  
  511.     /*    equal_ops         = {':=', '=', '/=', 'in', 'notin'}, */
  512.     symbol_assign = symbtab_enter(":=", symbol_boolean);
  513.     symbol_eq = symbtab_enter("=", symbol_boolean);
  514.     symbol_ne = symbtab_enter("/=", symbol_boolean);
  515.     symbol_in = symbtab_enter("IN", symbol_boolean);
  516.     symbol_notin = symbtab_enter("NOTIN", symbol_boolean);
  517.  
  518.     symbol_order_type = sym_new(na_type);
  519.     TYPE_OF(symbol_order_type) = symbol_order_type;
  520.     setname(symbol_order_type, "order_type");
  521.     symbol_lt = symbtab_enter("<", symbol_order_type);
  522.     symbol_le = symbtab_enter("<=", symbol_order_type);
  523.     symbol_ge = symbtab_enter(">=", symbol_order_type);
  524.     symbol_gt = symbtab_enter(">", symbol_order_type);
  525.  
  526.     /*    arith_ops         = {'+u', '-u', 'abs', '+', '-', '*', '/'}, */
  527.     /* symbol_numeric denote type of numeric operators, make void for now */
  528.     /* symbol_numeric is not explicitly created as such in setl version,
  529.      * rather this is tag used only in chapter 4 
  530.      */
  531.     symbol_numeric = sym_new(na_void);
  532.     setname(symbol_numeric, "numeric");
  533.     symbol_addu = symbtab_enter("+u", symbol_numeric);
  534.     symbol_subu = symbtab_enter("-u", symbol_numeric);
  535.     symbol_abs = symbtab_enter("abs", symbol_numeric);
  536.     symbol_add = symbtab_enter("+", symbol_numeric);
  537.     symbol_sub = symbtab_enter("-", symbol_numeric);
  538.     symbol_mul = symbtab_enter("*", symbol_numeric);
  539.     symbol_div = symbtab_enter("/", symbol_numeric);
  540.  
  541.     symbol_mod = symbtab_enter("mod", symbol_numeric);
  542.     symbol_rem = symbtab_enter("rem", symbol_numeric);
  543.  
  544.     symbol_exp = symbtab_enter("**", symbol_numeric);
  545.  
  546.     symbol_cat = symbtab_enter("&", symbol_array_type);
  547.  
  548.     /* We have introduced some new symbols in order to deal array catenations 
  549.      * &cc : catenation of one component and one component
  550.      * &ac : catenation of an array and a component
  551.      * &ca : catenation of a component and an array
  552.      */
  553.  
  554.     symbol_cat_cc = symbtab_enter ("&cc", symbol_array_type);
  555.     symbol_cat_ac = symbtab_enter ("&ac", symbol_array_type);
  556.     symbol_cat_ca = symbtab_enter ("&ca", symbol_array_type);
  557.  
  558.     symbtab_enter("any_op", symbol_any);
  559.  
  560.     /* The ABS operator is not a reserved word, and the interpreter
  561.      *  nevertheless expects its name in lower case. Thus :
  562.      */
  563.  
  564.     /*declared(standard)('ABS') := declared(standard)('abs');*/
  565.     dcl_put(declared_standard0, "ABS", dcl_get(declared_standard0, "abs"));
  566.  
  567.     symbol_modi = new_arith_op("modi", symbol_universal_integer);
  568.     symbol_remi = new_arith_op("remi", symbol_universal_integer);
  569.     symbol_addui = new_arith_op("+ui", symbol_universal_integer);
  570.     symbol_subui = new_arith_op("-ui", symbol_universal_integer);
  571.     symbol_absi = new_arith_op("absi", symbol_universal_integer);
  572.     symbol_addi = new_arith_op("+i", symbol_universal_integer);
  573.     symbol_subi = new_arith_op("-i", symbol_universal_integer);
  574.     symbol_muli = new_arith_op("*i", symbol_universal_integer);
  575.     symbol_divi = new_arith_op("/i", symbol_universal_integer);
  576.  
  577.     /*    arith_ops         = {'+u', '-u', 'abs', '+', '-', '*', '/'}, */
  578.     symbol_addufl = new_arith_op("+ufl", symbol_universal_real);
  579.     symbol_subufl = new_arith_op("-ufl", symbol_universal_real);
  580.     symbol_absfl = new_arith_op("absfl", symbol_universal_real);
  581.     symbol_addfl = new_arith_op("+fl", symbol_universal_real);
  582.     symbol_subfl = new_arith_op("-fl", symbol_universal_real);
  583.     symbol_mulfl = new_arith_op("*fl", symbol_universal_real);
  584.     symbol_divfl = new_arith_op("/fl", symbol_universal_real);
  585.  
  586.     symbol_addufx = new_arith_op("+ufx", symbol_universal_dfixed);
  587.     symbol_subufx = new_arith_op("-ufx", symbol_universal_dfixed);
  588.     symbol_absfx = new_arith_op("absfx", symbol_universal_dfixed);
  589.     symbol_addfx = new_arith_op("+fx", symbol_universal_dfixed);
  590.     symbol_subfx = new_arith_op("-fx", symbol_universal_dfixed);
  591.     symbol_mulfx = new_arith_op("*fx", symbol_universal_dfixed);
  592.     symbol_divfx = new_arith_op("/fx", symbol_universal_dfixed);
  593.     /* The fixed multiplication and division operators return the
  594.      * singular type universal_fixed, which must be explicitly con-
  595.      * verted before use.
  596.      */
  597.  
  598.     TYPE_OF(symbol_mulfx) = symbol_universal_fixed;
  599.     TYPE_OF(symbol_divfx) = symbol_universal_fixed;
  600.  
  601.     /* There are two types of mixed mode arithmetic operators: the ones
  602.      * for fixed-integer operations, used at run-time, and the ones for
  603.      * universal_real - universal_integer operations, used only in literal
  604.      * espressions.
  605.      */
  606.     /* new_arith_ops({'*fxi', '*ifx', '/fxi'}, '$FIXED'); */
  607.     symbol_mulfxi = new_arith_op("*fxi", symbol_dfixed);
  608.     symbol_mulifx = new_arith_op("*ifx", symbol_dfixed);
  609.     symbol_divfxi = new_arith_op("/fxi", symbol_dfixed);
  610.  
  611.     /* new_arith_ops({'*fli', '*ifl', '/fli'}, 'universal_real'); */
  612.     symbol_mulfli = new_arith_op("*fli", symbol_universal_real);
  613.     symbol_mulifl = new_arith_op("*ifl", symbol_universal_real);
  614.     symbol_divfli = new_arith_op("/fli", symbol_universal_real);
  615.  
  616.     symbol_expi = new_arith_op("**i", symbol_universal_integer);
  617.     symbol_expfl = new_arith_op("**fl", symbol_universal_real);
  618.  
  619.     /* Exceptions entered into SYMBTAB.*/
  620. #undef symint2
  621. #define symint2(name) name = sym_new(na_exception); \
  622.     TYPE_OF(name) = symbol_exception; SIGNATURE(name) = tup_new(0);
  623.     symbol_exception = sym_new(na_exception);/* ?? check this */
  624.     setname(symbol_exception, "EXCEPTION");
  625.  
  626.     symint2(symbol_constraint_error)
  627.         setname(symbol_constraint_error, "CONSTRAINT_ERROR");
  628.     symint2(symbol_numeric_error)
  629.         setname(symbol_numeric_error, "NUMERIC_ERROR");
  630.     symint2(symbol_program_error)
  631.         setname(symbol_program_error, "PROGRAM_ERROR");
  632.     symint2(symbol_storage_error)
  633.         setname(symbol_storage_error, "STORAGE_ERROR");
  634.     symint2(symbol_tasking_error)
  635.         setname(symbol_tasking_error, "TASKING_ERROR");
  636.     symint2(symbol_system_error)
  637.         setname(symbol_storage_error, "SYSTEM_ERROR");
  638.     /* Types and exceptions entered into DECLARED.  */
  639.     /* NOTE: 'NULL' obsolete and hence not entered here(DS 24 Feb 84) */
  640. #define DCLENT(c, s) dcl_put(declared_standard0, c, s)
  641.     DCLENT("ASCII", symbol_ascii);
  642.     DCLENT("BOOLEAN", symbol_boolean);
  643.     DCLENT("CHARACTER", symbol_character);
  644.     DCLENT("DURATION", symbol_duration);
  645.     DCLENT("FLOAT", symbol_float);
  646.     DCLENT("INTEGER", symbol_integer);
  647.     DCLENT("$FIXED", symbol_dfixed);
  648.     DCLENT("NATURAL", symbol_natural);
  649.     DCLENT("POSITIVE", symbol_positive);
  650.     DCLENT("STRING", symbol_string);
  651.     DCLENT("universal_integer", symbol_universal_integer);
  652.     DCLENT("universal_real", symbol_universal_real);
  653.     DCLENT("discrete_type", symbol_discrete_type);
  654.     DCLENT("universal_fixed", symbol_universal_fixed);
  655.     DCLENT("string_type", symbol_string_type);
  656.     DCLENT("array_type", symbol_array_type);
  657.     DCLENT("any", symbol_any);
  658.     DCLENT("none", symbol_none);
  659.     DCLENT("CONSTRAINT_ERROR", symbol_constraint_error);
  660.     DCLENT("NUMERIC_ERROR", symbol_numeric_error);
  661.     DCLENT("PROGRAM_ERROR", symbol_program_error);
  662.     DCLENT("STORAGE_ERROR", symbol_storage_error);
  663.     DCLENT("TASKING_ERROR", symbol_tasking_error);
  664.     DCLENT("SYSTEM_ERROR", symbol_system_error);
  665. #undef DCLENT
  666.  
  667.     /* Printable characters are entered into SYMBTAB, as overloaded
  668.      * literals whose source name is the character between single quotes.
  669.      */
  670.     {
  671.         Tuple lmap;
  672.         int    i;
  673.         char   *s;
  674.  
  675.         lmap = tup_new(2 * 128);
  676.         for (i = 0; i <= 127; i++ ) {
  677.             s = smalloc(4);
  678.             s[3] = '\0';
  679.             s[0] = '\'';
  680.             s[1] = (char) i;
  681.             s[2] = '\'';
  682.             lmap[2 * i + 1] = s;
  683.             lmap[2 * i + 2] =(char *) i;
  684.             /* if (i >= 32 && i <= 126 )  -- enter all ascii chars in SYMBTAB */
  685.             ini_chain(s, na_literal, symbol_character);
  686.         }
  687.         literal_map(symbol_character) =(Set) lmap;
  688.     }
  689.     /* characters.  */
  690.     /* scope_info is macro [scope_name, prefix, open_scopes, used_mods,
  691.      * vis_mods, suffix] in SETL. In C prefix and suffix do not apply,
  692.      * and we represent as tuple
  693.      * [scope_name, open_scopes, used_mods, vis_mods]
  694.      */
  695.     {
  696.         Tuple t;
  697.         t = tup_new(4);
  698.         t[1] =(char *) scope_name;
  699.         t[2] =(char *) tup_copy(open_scopes);
  700.         t[3] =(char *) tup_copy(used_mods);
  701.         t[4] =(char *) tup_copy(vis_mods);
  702.         scope_st = tup_with(scope_st, (char *) t);
  703.     }
  704.     /* scope_info =
  705.      * ['ASCII', '', ['ASCII', 'STANDARD#0', 'UNMENTIONABLE#0'], [], [], '']; ];
  706.      */
  707.  
  708.     scope_name = symbol_ascii;
  709.     open_scopes = tup_new(3);
  710.     open_scopes[1] =(char *) symbol_ascii;
  711.     open_scopes[2] =(char *) symbol_standard0;
  712.     open_scopes[3] =(char *) symbol_unmentionable;
  713.     vis_mods = tup_new(0);
  714.     used_mods = tup_new(0);
  715.     {
  716.         int    i;
  717.         char   *p, *p1;
  718.         Symbol sym;
  719.         char    name[20];
  720.  
  721.         for (i = 0; p = char_names[i]; i++) {
  722.             if (p[0] == ' ')
  723.                 /* code folded from here */
  724.                 break;
  725.             /* unfolding */
  726.             p1 = strchr(p, ' ');
  727.             if (p1 == p)
  728.                 /* code folded from here */
  729.                     break;
  730.             /* unfolding */
  731.             sym = sym_new(na_constant);
  732.             TYPE_OF(sym) = symbol_character;
  733.             SIGNATURE(sym) =(Tuple) val_nodea1(atoi(p1));
  734.             name[0] = '\0';
  735.             strncat(name, p, p1 - p);/* extract string with name */
  736.             setname(sym, strjoin(name, "")); /* p1 points to original name */
  737.             dcl_put(declared_ascii, name, sym);
  738.         }
  739.     }
  740.  
  741.     /* In the SETL version, we call popscope();
  742.      * to restore scope environment. For initialization purposes we need only
  743.      * restore scope info from that saved on scope stack, as follows:
  744.      */
  745.     tup = (Tuple) tup_frome(scope_st);
  746.     scope_name = (Symbol) tup[1];
  747.     open_scopes = (Tuple) tup[2];
  748.     used_mods = (Tuple) tup[3];
  749.     vis_mods = (Tuple) tup[4];
  750.  
  751.     /* For the enumeration type BOOLEAN*/
  752.  
  753. #ifndef IBM_PC
  754.     ini_chain("FALSE", na_literal, symbol_boolean);
  755.     ini_chain("TRUE", na_literal, symbol_boolean);
  756. #else
  757.     ini_chain(strjoin("FALSE", ""), na_literal, symbol_boolean);
  758.     ini_chain(strjoin("TRUE", ""), na_literal, symbol_boolean);
  759. #endif
  760.     {
  761.         Tuple lmap;
  762.         char   *s;
  763.         lmap = tup_new(4);
  764.         s = smalloc(6);
  765.         lmap[1] = strcpy(s, "FALSE");
  766.         lmap[2] = 0;
  767.         s = smalloc(5);
  768.         lmap[3] = strcpy(s, "TRUE");
  769.         lmap[4] =(char *) 1;
  770.         literal_map(symbol_boolean) =(Set) lmap;
  771.     }
  772.  
  773.     /*   The only predefined aggregate is the one for string literals.*/
  774.     ini_new_agg(symbol_string);
  775.  
  776.     /* Initialize the scope map for all identifiers in standard packages.
  777.      *  (forall [scop, decl] in declared)
  778.      *   (forall [-, id] in decl) SCOPE_OF(id) := scop; end;
  779.      *  end forall;
  780.      */
  781.     {
  782.         int    i;
  783.         Fordeclared dmapiv;
  784.         Declaredmap dmap;
  785.         char   *p;
  786.         Symbol sym, scop;
  787.  
  788.         for (i = 0; i <= 3; i++) {
  789.             scop = base_declared_symbols[i];
  790.             dmap = DECLARED(scop);
  791.             FORDECLARED(p, sym, dmap, dmapiv)
  792.                 SCOPE_OF(sym) = scop;
  793.             ENDFORDECLARED(dmapiv)
  794.         }
  795.     }
  796.  
  797. #define RSET(sym) root_type(sym) = sym
  798.     RSET(symbol_boolean);
  799.     RSET(symbol_character);
  800.     RSET(symbol_duration);
  801.     RSET(symbol_float);
  802.     RSET(symbol_integer);
  803.     RSET(symbol_dfixed);
  804.     RSET(symbol_natural);
  805.     RSET(symbol_positive);
  806.     RSET(symbol_string);
  807.     RSET(symbol_universal_integer);
  808.     RSET(symbol_universal_real);
  809.     RSET(symbol_discrete_type);
  810.     RSET(symbol_universal_fixed);
  811.     RSET(symbol_string_type);
  812.     RSET(symbol_array_type);
  813.     RSET(symbol_any);
  814.     RSET(symbol_none);
  815. #undef RSET
  816.     /* except for...*/
  817.  
  818.     root_type(symbol_natural) = symbol_integer;
  819.     root_type(symbol_positive) = symbol_integer;
  820.     root_type(symbol_duration) = root_type(symbol_dfixed);
  821.     /*$ root_type('array_type') := 'any';*/
  822.     root_type(symbol_short_integer) = symbol_integer;
  823.     root_type(symbol_short_integer_base) = symbol_integer;
  824.  
  825.     initialize_representation_info(symbol_boolean,TAG_ENUM);
  826.     initialize_representation_info(symbol_character,TAG_ENUM);
  827.     initialize_representation_info(symbol_duration,TAG_FIXED);
  828.     initialize_representation_info(symbol_integer,TAG_INT);
  829.     initialize_representation_info(symbol_float,TAG_FLOAT);
  830.     initialize_representation_info(symbol_dfixed,TAG_FIXED);
  831.  
  832.     force_representation(symbol_boolean);
  833.     force_representation(symbol_character);
  834.     force_representation(symbol_duration);
  835.     force_representation(symbol_float);
  836.     force_representation(symbol_integer);
  837.     force_representation(symbol_dfixed);
  838.  
  839.     choose_representation(symbol_positive);
  840.     choose_representation(symbol_natural);
  841.  
  842.  
  843.     /* base_declared is used to save declared maps as currently defined*/
  844.     base_declared[0] = dcl_copy(declared_standard0);
  845.     base_declared[1] = dcl_copy(declared_unmentionable);
  846.     base_declared[2] = dcl_copy(declared_standard);
  847.     base_declared[3] = dcl_copy(declared_ascii);
  848.     /* VISIBLE('ASCII') := DECLARED('ASCII'); entries visible by default */
  849.     FORDECLARED(id, sym, DECLARED(symbol_ascii), fd);
  850.         IS_VISIBLE(fd) = TRUE;
  851.     ENDFORDECLARED(fd);
  852.     newtypes = tup_with(newtypes, (char *) tup_new(0));
  853.  
  854.     /* initialize sets of types(constants in setl version) */
  855.  
  856.     /* Next four symbols introduced for maps incp_types, priv_types */
  857.     symbol_private = sym_new(na_type);
  858.     setname(symbol_private, "private");
  859.     symbol_limited_private = sym_new(na_type);
  860.     setname(symbol_limited_private, "limited_private");
  861.     symbol_limited = sym_new(na_type);
  862.     setname(symbol_limited, "limited");
  863.     symbol_incomplete = sym_new(na_type);
  864.     setname(symbol_incomplete, "incomplete");
  865.  
  866.     /* the following symbols are used as markers by check_type in chapter 4 */
  867.     symbol_universal_type = sym_new(na_void);
  868.     setname(symbol_universal_type, "universal_type");
  869.     symbol_integer_type = sym_new(na_void);
  870.     setname(symbol_integer_type, "integer_type");
  871.     symbol_real_type = sym_new(na_void);
  872.     setname(symbol_real_type, "real_type");
  873.     symbol_composite_type = sym_new(na_void);
  874.     setname(symbol_composite_type, "composite_type");
  875.     symbol_equal_type = sym_new(na_void);
  876.     setname(symbol_equal_type, "equal_type");
  877.  
  878.     SIGNATURE(symbol_universal_integer_1) = (Tuple)  val_node1(1);
  879.  
  880.     /* TBSN: base_attributes
  881.      * ??const base_attributes = {'BASE','POS','PRED','SUCC','VAL','VALUE'};
  882.      */
  883.     /* define binary_sig and unary_sig used by valid_op_types et. al. 
  884.      * in chapter 4
  885.      */
  886.     unary_sig = tup_new1((char *) symbol_right);
  887.     binary_sig = tup_new(2);
  888.     binary_sig[1] = (char *) symbol_left;
  889.     binary_sig[2] = (char *) symbol_right;
  890.     return;
  891. }
  892.  
  893. /* In C, need several versions of val_node, since we cannot test argument */
  894. /* type as we can in SETL */
  895.  
  896. static Node val_node1(int init_val)                                /*;val_node1*/
  897. {
  898.     /* Called from init_sem to initialize the bounds of predefined types.*/
  899.  
  900.     Node node;
  901.  
  902.     node = node_new(as_ivalue);
  903.     init_node_save(node);
  904.     /* INTEGER case */
  905.     N_TYPE(node) = symbol_integer;
  906.  
  907.     N_VAL(node) =(char *) int_const(init_val);
  908.     return node;
  909. }
  910.  
  911. static Node val_nodea1(int init_val)                    /*;val_nodea1*/
  912. {
  913.     /* Called from init_sem to initialize the bounds of predefined types.*/
  914.     /* like val_node1, but does not save generated node */
  915.  
  916.     Node node;
  917.  
  918.     node = node_new(as_ivalue);
  919.     /* INTEGER case */
  920.     N_TYPE(node) = symbol_integer;
  921.  
  922.     N_VAL(node) =(char *) int_const(init_val);
  923.     return node;
  924. }
  925.  
  926. static Node val_node2(double init_val)    /*;val_node2*/
  927. {
  928.     /* Called from init_sem to initialize the bounds of predefined types.*/
  929.  
  930.     Node node;
  931.     /* 'REAL' case */
  932.     node = node_new(as_ivalue);
  933.     init_node_save(node);
  934.  
  935.     N_TYPE(node) = symbol_float;
  936.  
  937.     N_VAL(node) = (char *)real_const(init_val);
  938.     return node;
  939. }
  940.  
  941. static Node val_node3(Rational init_val)                    /*;val_node3*/
  942. {
  943.     /* Called from init_sem to initialize the bounds of predefined types.*/
  944.  
  945.     Node node;
  946.  
  947.     node = node_new(as_ivalue);
  948.     init_node_save(node);
  949.     /* INTEGER TUPLE case */
  950.     N_TYPE(node) = symbol_universal_real;
  951.  
  952.     N_VAL(node) =(char *) rat_const(init_val);
  953.     return node;
  954. }
  955.  
  956. static void init_node_save(Node node)        /*;init_node_save*/
  957. {
  958.     init_node_count += 1;
  959.     init_nodes[init_node_count] = (char *)node;
  960. }
  961.  
  962. static Symbol ini_chain(char *name, int nat, Symbol typ)    /*;ini_chain*/
  963. {
  964.     /* variant of chain_overloads for use by sem_init */
  965.  
  966.     Symbol ent;
  967.  
  968.     if (cdebug2 > 3) TO_ERRFILE("AT PROC :  chain_overloads");
  969.     /* Insert enumeration literal into the current
  970.      * symbol table.
  971.      *    declared(scope)(id) = name;
  972.      */
  973.     ent = sym_new(nat);
  974.     dcl_put(declared_standard0, name, ent);
  975.     /* Place in symbol table maps the specification of a new overloadable
  976.      * object .
  977.      */
  978.     TYPE_OF(ent) = typ;
  979.     SIGNATURE(ent) = tup_new(0);
  980.     SCOPE_OF(ent) = symbol_standard0;
  981.     /* TO_XREF(ent);*/
  982.  
  983.     OVERLOADS(ent) = set_new1((char *) ent);
  984.     ORIG_NAME(ent) = name;
  985.  
  986.     return ent;
  987. }
  988.  
  989. static Symbol symbtab_enter(char *opr, Symbol result)        /*;symbtab_enter*/
  990. {
  991.     /* Enter into symbol table the names of all predefined operators.
  992.      * They have generic types which cover all types derived from the pre-
  993.      * defined ones, and overload themselves.
  994.      */
  995.  
  996.     Symbol s;
  997.  
  998.     if (cdebug2 > 3) TO_ERRFILE("AT PROC : symbtab_enter(oprs, result) ");
  999.  
  1000.     s = sym_new(na_op);
  1001. #ifdef IBM_PC
  1002.     ORIG_NAME(s) = strjoin(opr, ""); /* added by ds 17 jul 84 */
  1003. #else
  1004.     ORIG_NAME(s) = opr; /* added by ds 17 jul 84 */
  1005. #endif
  1006.     dcl_put(declared_standard0, opr, s);
  1007.     /*    declared(standard)(op_name) := op_name;*/
  1008.     /* Each of the predefined operators overloads itself. */
  1009.     TYPE_OF(s) = result;
  1010.     SIGNATURE(s) = tup_new(0);
  1011.     OVERLOADS(s) = set_new1((char *) s);
  1012.     SCOPE_OF(s) = symbol_standard0;
  1013.     return s;
  1014. }
  1015.  
  1016. static Symbol new_arith_op(char *opr, Symbol result)        /*;new_arith_op*/
  1017. {
  1018.     Symbol s;
  1019.  
  1020.     if (cdebug2 > 3) {
  1021. #ifdef ERRMSG
  1022.         TO_ERRFILE('AT PROC : new_arith_ops(opr, result) ');
  1023. #endif
  1024.         TO_ERRFILE("AT PROC : new_arith_ops(opr, result) ");
  1025.     }
  1026.     /* Arithmetic operators are introduced for integer, floating point and
  1027.      * fixed point results. These operators are never accessed directly by
  1028.      * name resolution routines, but rather by the type resolution routine
  1029.      * valid_arith_args. As a result, they need not appear in declared(St.)
  1030.      * and need not have nay overloading specified.
  1031.      */
  1032.     s = sym_new(na_op);
  1033. #ifdef IBM_PC
  1034.     /* must use strjoin since overlaying 0a.c */
  1035.     ORIG_NAME(s) = strjoin(opr, "");
  1036. #else
  1037.     ORIG_NAME(s) = opr;
  1038. #endif
  1039.     TYPE_OF(s) = result;
  1040.     SIGNATURE(s) = tup_new(0);
  1041.     return s;
  1042. }
  1043.  
  1044. static void ini_new_agg(Symbol type_mark)                     /*;ini_new_agg*/
  1045. {
  1046.     /* variant of new_agg_or_access for use by semini */
  1047.     /*
  1048.      * The possible types of an aggregate are all composite types that are
  1049.      * currently visible. To simplify their use, an entry  with the marker
  1050.      * 'aggregate' is created for each such type definition. Its overloads
  1051.      * set carries all such types  defined in  the current    scope. This is
  1052.      * similar to what is done for other overloadable constructs.
  1053.      * The same is done for access types, using the marker 'access'.
  1054.      */
  1055.     Symbol scope, new_def;
  1056.  
  1057.     /* make a no-op for now */
  1058.     scope = scope_name;
  1059.  
  1060.     new_def = sym_new(na_aggregate);
  1061.     dcl_put(DECLARED(scope), "aggregate", new_def);
  1062.     SCOPE_OF(new_def) = scope;
  1063.     NATURE(new_def)      = na_aggregate;
  1064.     TYPE_OF(new_def)  = type_mark;
  1065.     OVERLOADS(new_def) = set_new1((char *) type_mark);
  1066.  
  1067. #ifdef TBSN
  1068.     if (old_def != (Symbol)0) { /* Save its overloads*/
  1069.         set_with(OVERLOADS(new_def) +:
  1070.         = overloads(old_def);
  1071.             declared(scope)(str newat) :
  1072.         = old_def;    $ and keep accessible
  1073.     }
  1074. #endif
  1075.     return;
  1076. }
  1077.  
  1078. int in_op_designators(char *s)                            /*;in_op_designators*/
  1079. {
  1080.     /* op_designators is a set of strings, so must use strcmp to check
  1081.      * for set membership.
  1082.      */
  1083.     int    i;
  1084.  
  1085.     for (i = 0; op_desig_array[i]; i++)
  1086.         if(streq(op_desig_array[i], s)) return TRUE;
  1087.     return FALSE;
  1088. }
  1089.